home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / shared.dir / 00548.ls < prev    next >
Encoding:
Text File  |  1996-03-20  |  256 b   |  17 lines

  1. on exithandler
  2.   global quitVar, timerFlag
  3.   if timerFlag = 0 then
  4.     startTimer()
  5.     set timerFlag to 1
  6.   end if
  7.   if the timer < (2 * 60) then
  8.     nothing()
  9.   else
  10.     if quitVar = 1 then
  11.       return 1
  12.     else
  13.       nothing()
  14.     end if
  15.   end if
  16. end
  17.